home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 4490 / 4490.xpi / components / scripts / wmn_forum.js < prev    next >
Text File  |  2010-01-29  |  928b  |  34 lines

  1. /***********************************************************
  2. WMN-forum
  3.   @require lib-update.js
  4. ***********************************************************/
  5. var name="WMN-forum";
  6. var noCookie=true;
  7.  
  8. function init(){
  9.   try{
  10.     initUpdateHandler(this);
  11.   }catch(e){
  12.     dout(e);
  13.   }
  14.   var t=parseInt(180*60000/this.main.timerDelay);
  15.   if(t<1)t=1;
  16.   this.timerMultiplier=t;
  17.   this.dataURL="http://webmailnotifier.mozdev.org/drupal/forum/"+this.password;
  18.   this.mailURL=this.dataURL;
  19.   this.mailDomain="webmailnotifier.mozdev.org";
  20.   this.start="<div id=\"forum\">[\\s\\S]+?<tbody>";
  21.   this.end="<\/tbody>";
  22. }
  23. function findString(aData){
  24.   var reg=new RegExp(this.start+"([\\s\\S]+?)"+this.end);
  25.   var fnd=aData.match(reg);
  26.   if(fnd){
  27.     fnd=fnd[1].replace(/<td class=\"created\">.+?<\/td>/g,"");
  28.     fnd=fnd.replace(/<td class=\"last-reply\".+?<\/td>/g,"");
  29.     return fnd;
  30.   }
  31.   return null;
  32. }
  33.  
  34.